home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_gen / jav503.zip / STAFF.JAV < prev    next >
Text File  |  1996-05-09  |  576b  |  61 lines

  1. // -[KeepHeading]-
  2.  
  3.  
  4. // -[Copyright]-
  5.  
  6. /**
  7.  * 
  8.  */
  9. import java.lang.*;
  10.  
  11.  
  12. // -[KeepBeforeClass]-
  13.  
  14.  
  15. // -[Class]-
  16.  
  17. /**
  18.  * @jTitle           Staff
  19.  * @jAuthor          Chris Colman
  20.  * @jOverridability  can be overridden
  21.  * @jDescription
  22.  * Describe here
  23.  * 
  24.  * @see              Person
  25.  */
  26. public 
  27. class Staff extends Person
  28. {
  29. // -[KeepWithinClass]-
  30.  
  31.  
  32. // -[Fields]-
  33.  
  34.  
  35.  
  36. /**
  37.  * NoDesc
  38.  */
  39. protected int salary;
  40.  
  41. /**
  42.  * Association declarations
  43.  */
  44.  
  45.  
  46.  
  47.  
  48. // -[Methods]-
  49.  
  50.  
  51.  
  52. /**
  53.  * Describe here
  54.  */
  55. public void pay() {
  56. }
  57.  
  58. }
  59.  
  60.  
  61.